home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / shareware / Flash_Oyunlar.exe / bumperball.swf / scripts / frame_43 / DoAction.as
Encoding:
Text File  |  2005-07-13  |  575 b   |  23 lines

  1. if(_root.globalvars.gamemode == "1-player")
  2. {
  3.    if(_root.counter.goalleftcounter < _root.counter.goalrightcounter)
  4.    {
  5.       gotoAndStop("1p_ YouLose");
  6.    }
  7.    if(_root.counter.goalrightcounter < _root.counter.goalleftcounter)
  8.    {
  9.       gotoAndStop("1p_ YouWin");
  10.    }
  11. }
  12. if(_root.globalvars.gamemode == "2-player")
  13. {
  14.    if(_root.counter.goalleftcounter < _root.counter.goalrightcounter)
  15.    {
  16.       gotoAndStop("2p - 1p Wins");
  17.    }
  18.    if(_root.counter.goalrightcounter < _root.counter.goalleftcounter)
  19.    {
  20.       gotoAndStop("2p - 2p Wins");
  21.    }
  22. }
  23.